* lisp/obarray.el (obarray-size): Avoid compiler warning.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 18 Mar 2017 16:29:12 +0000 (12:29 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 18 Mar 2017 16:29:12 +0000 (12:29 -0400)
lisp/obarray.el

index a4631859925d4b3d7d7ea744d354ec341e39aeef..b1160ebea43bf9c2b7571b864628985bd817e91e 100644 (file)
@@ -37,9 +37,9 @@
         (make-vector size 0)
       (signal 'wrong-type-argument '(size 0)))))
 
-(defun obarray-size (obarray)
-  "Return the number of slots of OBARRAY."
-  (length obarray))
+(defun obarray-size (ob)
+  "Return the number of slots of obarray OB."
+  (length ob))
 
 (defun obarrayp (object)
   "Return t if OBJECT is an obarray."